body {
  background-color: rgb(0, 0, 0);
  color: #f0f0f0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: monospace;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  margin-bottom: 20px;
  background-color: black;
  background-size: 600px;
  padding-bottom: 100px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
}

nav {
  text-align: center;
  margin-bottom: 30px;
  background-color: rgb(29, 29, 29);
  width: 100%;
  padding: 20px 0px;
  padding-bottom: 30px;
  background-size: cover;
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 30px;
  font-size: 30px;
    transition: color 0.3s ease;
      transition: font-size 0.3s ease;
}

nav a:hover{
  color: #40c55d;
  font-size: 35px;
}
main {
  max-width: 800px;
  margin: auto;
}

section {
  margin-bottom: 40px;
}

footer {
  text-align: center;
  opacity: 0.6;
  font-size: 14px;
  background-color: rgb(82, 104, 104);
  padding-bottom: 10px;

  -webkit-mask-image: linear-gradient(
    to top,
    black 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    black 70%,
    transparent 100%
  );
}
.support-me {
  text-align: center;
}

.support-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #29abe0;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.support-btn:hover {
  opacity: 0.85;
}
.End{
  margin-top: 50px;
  padding-top: 50px;
}

 .Privacy-Policy:hover{
  font-size: 16px;
  color: black;
}
 .Privacy-Policy{
  font-size: 15px;
  color: white;
  transition: color 0.2s ease;
      transition: font-size 0.2s ease;
}


.Socials img{
  width: 30px;
  height: auto;
}
.email-link{
    text-decoration: none;
    display: block;
    margin: 0  auto;
    text-align: center;
    font-size: 30px;
    color: grey;
    transition: color 0.5s ease;
}
.email-link:hover{
    text-decoration: underline;
    color: white;
}
body {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.loaded {
  opacity: 1;
  transform: translateY(0);
}
/* ===========================
   MOBILE NAV STACK
=========================== */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column; /* stack links vertically */
    align-items: center;    /* center links horizontally */
    gap: 12px;              /* spacing between links */
  }

  nav a {
    margin: 0;              /* remove horizontal spacing */
    font-size: 18px;        /* smaller font for mobile */
  }
}
/* ===========================
   MOBILE ADJUSTMENTS
=========================== */
@media (max-width: 768px) {

  /* Stack nav links vertically */
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  nav a {
    margin: 0;
    font-size: 18px; /* smaller nav text */
  }
  nav {
    padding-bottom: 50px;
  }
  /* Shrink header logo */
  header img {
    width: 200px;
    height: auto;
  }

  /* Main section adjustments */
  main {
    padding: 0 16px; /* smaller horizontal padding */
  }

  section h1 {
    font-size: 1.4rem; /* smaller heading */
    text-align: center;
  }

  .email-link {
    font-size: 20px; /* smaller email text */
  }

  footer {
    font-size: 12px;
  }

  .Socials img {
    width: 25px;
  }

  .End {
    margin-top: 30px;
    padding-top: 30px;
  }
  footer {
    font-size: 12px;
    padding: 20px 10px;
  }

  .End img {
    width: 150px;
    height: auto;
  }

  .Privacy-Policy {
    font-size: 13px;
  }

  .Privacy-Policy:hover {
    font-size: 14px;
  }

  .Socials img {
    width: 25px;
  }
}

/* Extra small phones */
@media (max-width: 480px) {

  header img {
    width: 150px;
  }

  section h1 {
    font-size: 1.2rem;
  }

  .email-link {
    font-size: 18px;
  }

  .Socials img {
    width: 20px;
  }

}
